home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / netinclude / bsdsocket.h next >
C/C++ Source or Header  |  1994-03-22  |  648b  |  28 lines

  1. #ifndef BSDSOCKET_H
  2. #define BSDSOCKET_H
  3. /*
  4.  * $Id: bsdsocket.h,v 1.5 1994/02/26 18:47:23 jraja Exp $
  5.  *
  6.  * Compiler dependent prototypes and inlines for bsdsocket.library
  7.  *
  8.  * Copyright © 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
  9.  *                  Helsinki University of Technology, Finland.
  10.  *                  All rights reserved.
  11.  */
  12.  
  13. /* These are compiler independent */
  14. #include <unistd.h>
  15. #include <clib/netlib_protos.h>
  16.  
  17. #if __SASC
  18. #include <proto/socket.h>
  19. #include <proto/usergroup.h>
  20. #elif __GNUC__
  21. #include <inline/socket.h>
  22. #else
  23. #include <clib/socket_protos.h>
  24. #include <clib/usergroup_protos.h>
  25. #endif
  26.  
  27. #endif /* !BSDSOCKET_H */
  28.